+2005-11-21 Matthias Clasen <mclasen@redhat.com>
+
+ Fix for bug #321542, Benedikt Meurer:
+
+ * gtk/gtkcombobox.c (gtk_combo_box_set_active_internal):
+ Emit notify::active.
+
+ (gtk_combo_box_child_show, gtk_combo_box_child_hide): Use
+ g_signal_emit, not g_signal_emit_by_name.
+
2005-11-18 Matthias Clasen <mclasen@redhat.com>
Fix crashes in connection with pathbar scrolling (#321560,
+2005-11-21 Matthias Clasen <mclasen@redhat.com>
+
+ Fix for bug #321542, Benedikt Meurer:
+
+ * gtk/gtkcombobox.c (gtk_combo_box_set_active_internal):
+ Emit notify::active.
+
+ (gtk_combo_box_child_show, gtk_combo_box_child_hide): Use
+ g_signal_emit, not g_signal_emit_by_name.
+
2005-11-18 Matthias Clasen <mclasen@redhat.com>
Fix crashes in connection with pathbar scrolling (#321560,
gpointer user_data)
{
GtkComboBox *combo_box = GTK_COMBO_BOX (user_data);
-
- g_signal_emit_by_name (combo_box, "popup-show", NULL, NULL);
+ g_signal_emit (combo_box, combo_box_signals[POPUP_SHOW], 0);
}
static void
gpointer user_data)
{
GtkComboBox *combo_box = GTK_COMBO_BOX (user_data);
-
- g_signal_emit_by_name (combo_box, "popup-hide", NULL, NULL);
+ g_signal_emit (combo_box, combo_box_signals[POPUP_HIDE], 0);
}
static gboolean
path);
}
- g_signal_emit_by_name (combo_box, "changed", NULL, NULL);
+ g_signal_emit (combo_box, combo_box_signals[CHANGED], 0);
+ g_object_notify (G_OBJECT (combo_box), "active");
}